为了账号安全,请及时绑定邮箱和手机立即绑定

js和Object-c中sha1中文出错

标签:
JavaScript iOS

js如何修改

由于js在内部编码上对中文是utf16于是在调用sha1方法前面加上转换字符

utf16转utf8

function utf16to8(str) {
var out, i, len, c;

out = "";
len = str.length;
for(i = 0; i < len; i++){
    c = str.charCodeAt(i);
    if ((c >= 0x0001) && (c <= 0x007F)) {
        out += str.charAt(i);
    } else if (c > 0x07FF){
        out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
        out += String.fromCharCode(0x80 | ((c >>  6) & 0x3F));
        out += String.fromCharCode(0x80 | ((c >>  0) & 0x3F));
    } else {
        out += String.fromCharCode(0xC0 | ((c >>  6) & 0x1F));
        out += String.fromCharCode(0x80 | ((c >>  0) & 0x3F));
    }
}
return out;

}

Object-c如何修改

某第三方库代码

const char cstr = [self cStringUsingEncoding:encoding];
NSData
data = [NSData dataWithBytes:cstr length:self.length];
uint8_t digest[CC_SHA1_DIGEST_LENGTH];
CC_SHA1(data.bytes, data.length, digest);
NSMutableString result = [NSMutableString stringWithCapacity:CC_SHA1_DIGEST_LENGTH 2];
for(int i = 0; i < CC_SHA1_DIGEST_LENGTH; i++) {
[result appendFormat:@"%02x", digest[i]];
}
return result.uppercaseString;

上面的方法中文字符串转data时会造成数据丢失,把

const char cstr = [input cStringUsingEncoding:NSUTF8StringEncoding];
NSData
data = [NSData dataWithBytes:cstr length:input.length];

这两句改成

NSData *data = [input dataUsingEncoding:NSUTF8StringEncoding];

就可以了

ps,这是因为我们遇到字符串先转成utf-8了,而后台遇到没转utf8,而是直接sha1加密。

点击查看更多内容
13人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消